home *** CD-ROM | disk | FTP | other *** search
- #!/bin/sh
-
- set -e
-
- # version 0.9.4.1-1 started shipping /var/lib/scrollkeeper erroneously, hence
- # the database was overwritten and needs a full rebuild
- if [ "$1" = "configure" ] && dpkg --compare-versions "$2" ge "0.9.4.1-1" && dpkg --compare-versions "$2" lt "0.9.4.1-5" && which scrollkeeper-rebuilddb >/dev/null 2>&1; then
- echo "Upgrade from broken Rhythmbox version detected, running scrollkeeper-rebuilddb..."
- scrollkeeper-rebuilddb -q
- fi
-
- # Automatically added by dh_installmenu
- if [ "$1" = "configure" ] && [ -x "`which update-menus 2>/dev/null`" ]; then
- update-menus
- fi
- # End automatically added section
- # Automatically added by dh_installmime
- if [ "$1" = "configure" ] && [ -x "`which update-mime 2>/dev/null`" ]; then
- update-mime
- fi
- # End automatically added section
- # Automatically added by dh_scrollkeeper
- if [ "$1" = "configure" ] && which scrollkeeper-update >/dev/null 2>&1; then
- scrollkeeper-update -q
- fi
- # End automatically added section
- # Automatically added by dh_gconf
- if [ "$1" = "configure" ] && which update-gconf-defaults >/dev/null 2>&1; then
- update-gconf-defaults
- fi
- # End automatically added section
- # Automatically added by dh_gconf
- if [ "$1" = "configure" ]; then
- gconf-schemas --register rhythmbox.schemas
- fi
- # End automatically added section
- # Automatically added by dh_desktop
- if [ "$1" = "configure" ] && which update-desktop-database >/dev/null 2>&1 ; then
- update-desktop-database -q
- fi
- # End automatically added section
- # Automatically added by dh_icons
- if which update-icon-caches >/dev/null 2>&1 ; then
- update-icon-caches /usr/share/icons/hicolor
- fi
- # End automatically added section
- # Automatically added by dh_pysupport
- if which update-python-modules >/dev/null 2>&1; then
- update-python-modules rhythmbox.dirs
- fi
- # End automatically added section
- # Automatically added by dh_makeshlibs
- if [ "$1" = "configure" ]; then
- ldconfig
- fi
- # End automatically added section
-
-
-